<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Humanbound</title>
    <description>The latest articles on DEV Community by Humanbound (humanbound_ai).</description>
    <link>https://dev.to/humanbound_ai</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Forganization%2Fprofile_image%2F14021%2F9ddf1b5d-e0b6-4753-9b57-dc6de6c3f91d.jpg</url>
      <title>DEV Community: Humanbound</title>
      <link>https://dev.to/humanbound_ai</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/humanbound_ai"/>
    <language>en</language>
    <item>
      <title>Why Your AI Agent's Biggest Vulnerability Isn't a Missing Firewall</title>
      <dc:creator>Sofia Aliferi</dc:creator>
      <pubDate>Tue, 21 Jul 2026 05:09:57 +0000</pubDate>
      <link>https://dev.to/humanbound_ai/why-your-ai-agents-biggest-vulnerability-isnt-a-missing-firewall-3j08</link>
      <guid>https://dev.to/humanbound_ai/why-your-ai-agents-biggest-vulnerability-isnt-a-missing-firewall-3j08</guid>
      <description>&lt;p&gt;(initially published at &lt;a href="https://www.humanbound.ai/blog/why-your-ai-agents-biggest-vulnerability-isnt-a-missing-firewall" rel="noopener noreferrer"&gt;https://www.humanbound.ai/blog/why-your-ai-agents-biggest-vulnerability-isnt-a-missing-firewall&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;Three incidents, one root cause.&lt;/p&gt;

&lt;p&gt;Over the past few weeks, the AI agent security community has been reacting to a pattern that keeps repeating. OpenClaw deleted a Meta AI Safety lead's entire email inbox. Peak Security disclosed a new vulnerability class called PleaseFix that hijacks agentic browsers through calendar invites. An autonomous bot powered by Claude Opus 4.5 got remote code execution in Microsoft, DataDog, and CNCF repositories within a single week.&lt;/p&gt;

&lt;p&gt;These are different systems, different architectures, different attack surfaces. But they share a common failure mode that deserves more attention than it's getting.&lt;/p&gt;

&lt;p&gt;None of these agents failed because they lacked a firewall. None were breached through a missing control plane or an absent identity layer. &lt;strong&gt;They failed because their behavior under adversarial conditions was never tested.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The incident pattern nobody's naming&lt;br&gt;
Let’s walk through each briefly, because the technical details matter.&lt;/p&gt;

&lt;p&gt;OpenClaw's email deletion incident, covered extensively by Eduardo Ordax, was not the result of a sophisticated exploit. The agent received conflicting instructions and chose the wrong action. It had been told not to touch anything until the user approved. It didn't listen. This is a scope violation under instruction conflict, one of the most basic categories in the OWASP Agentic AI taxonomy. A single adversarial test simulating contradictory instructions would have surfaced this behavior before production.&lt;/p&gt;

&lt;p&gt;The PleaseFix vulnerability, disclosed by Tamir Ishay Sharbat at Peak Security, is architecturally different but reveals the same gap. An attacker sends a calendar invite. The user asks their agentic browser (Perplexity's Comet) a question about their calendar. The LLM's decision loop gets redirected via injected instructions in the invite content. The browser navigates the filesystem and exfiltrates files.&lt;/p&gt;

&lt;p&gt;The interesting part: traditional runtime path-based controls would not have caught this. As Simon Shine pointed out, all major runtime security tools (AppArmor, Tetragon, Seccomp-BPF, Falco, KubeArmor) gate on executable path, not on content. The agentic browser was using its legitimate, authorized file access. The execution path was correct. The behavior was not.&lt;/p&gt;

&lt;p&gt;Then there's hackerbot-claw, documented by Ilya Kabanov. An autonomous bot powered by Claude Opus 4.5 scanned 47,000 public repositories for vulnerable GitHub Actions workflows, selected six targets, and achieved remote code execution in four of them, including repos maintained by Microsoft, DataDog, and CNCF. It used known attack techniques through legitimate CI/CD paths. Nothing about the execution was unauthorized from an infrastructure standpoint. The agent's actions were the problem, not the infrastructure's permissions.&lt;/p&gt;

&lt;p&gt;The common thread is clear: the agent's behavior was the vulnerability. Not the network. Not the authentication. Not the infrastructure.&lt;/p&gt;

&lt;p&gt;Why runtime enforcement alone doesn't solve this&lt;br&gt;
The people building enforcement layers are doing necessary work. But the current discourse overindexes on enforcement as the primary solution. The sequence matters.&lt;/p&gt;

&lt;p&gt;Aldo Pietropaolo has been writing a thoughtful series on Deterministic Control Planes for agent runtime governance. His core argument is sound: you shouldn't ask the agent to enforce its own governance. A control plane should sit outside the agent, evaluate every action using deterministic policy engines (not probabilistic LLM reasoning), and fail closed if unavailable.&lt;/p&gt;

&lt;p&gt;This is solid architecture. But a control plane needs to know what to block. Where do those policies come from? If you haven't tested the agent adversarially, you don't know its failure modes. Your policies are based on assumptions, not evidence.&lt;/p&gt;

&lt;p&gt;Eran Sandler's AgentSH takes a different angle: execution-layer security between intent and real-world side effects. His critique of AGENTS.md is valid. A markdown file cannot enforce behavior. Models are probabilistic, key instructions get missed or diluted, and there's no mechanism to prevent an agent from ignoring its own rules. AgentSH catches abuse at the process, file, and network level.&lt;/p&gt;

&lt;p&gt;What it cannot catch is an agent that stays within its legitimate execution paths while violating its intended behavioral scope. The PleaseFix attack is exactly this scenario.&lt;/p&gt;

&lt;p&gt;Simon Shine's observation deserves repeating because it crystallizes the architectural gap. Every major runtime security tool in the container ecosystem gates on executable path. This is a reasonable tradeoff for traditional workloads, where processes follow predictable execution patterns. But AI agents can invoke legitimate tools for illegitimate purposes. They can use authorized paths to perform unauthorized actions. Path-based enforcement cannot distinguish between a legitimate file read and an exfiltration-motivated file read when both use the same system call from the same binary.&lt;/p&gt;

&lt;p&gt;This isn't a criticism of these approaches. It’s an observation that they solve a different problem. Infrastructure enforcement protects systems from agents. Behavioral testing validates whether the agents themselves behave correctly under pressure. Both are necessary. But one is the precondition for the other.&lt;/p&gt;

&lt;p&gt;What behavioral testing actually tests (and what it doesn't)&lt;br&gt;
It’s important to be specific about what behavioral testing covers.&lt;/p&gt;

&lt;p&gt;Adversarial testing for AI agents operates at the conversation layer, not the network layer. It tests for prompt injection, jailbreaks, tool abuse, data exfiltration, and scope violations through crafted dialogue, not through network exploits or binary fuzzing. The attack vector is language. The defense being tested is the agent's ability to maintain its intended behavior when someone is actively trying to make it deviate.&lt;/p&gt;

&lt;p&gt;Agentic multi-turn testing extends this to agents with tool access. Instead of single-turn prompt injection, you simulate realistic attack chains: a multi-step conversation that starts innocuously and gradually escalates toward a scope violation or tool misuse. This is closer to how real adversaries operate against AI systems. They don't send a single malicious prompt. They build context, establish rapport, and progressively push boundaries.&lt;/p&gt;

&lt;p&gt;The evaluation layer matters too. An LLM-as-a-Judge approach provides structured verdicts (pass/fail/violation) with confidence scores, rather than the binary exploit/no-exploit of traditional pentesting. This is important because AI agent failures exist on a spectrum. An agent that slightly overshares is different from one that exfiltrates credentials, and your testing framework needs to capture that granularity.&lt;/p&gt;

&lt;p&gt;What behavioral testing does not cover: it does not test what the agent does to the system at the infrastructure level. File operations, API calls, network access, process execution. That is genuinely the domain of execution-layer enforcement tools. If an agent is writing malicious files or making unauthorized network calls, behavioral testing at the conversation layer won't catch that.&lt;/p&gt;

&lt;p&gt;This is where enforcement layers complement testing. The two are not alternatives. They are different phases of the same lifecycle.&lt;/p&gt;

&lt;p&gt;The lifecycle that works: test, learn, enforce, monitor, retest&lt;br&gt;
Testing, enforcement, and monitoring are not independent activities. They form a feedback loop where each phase makes the next one better.&lt;/p&gt;

&lt;p&gt;At Humanbound, we built the ASCAM (AI Security Continuous Assurance Model) engine around this insight. Rather than treating testing as a one-off event, it operates as a continuous decision loop that evaluates an agent's security posture and selects the right activity at the right time:&lt;/p&gt;

&lt;p&gt;Scan - extracting scope, risk profile, and establishing a security baseline.&lt;br&gt;
Assess - structured red teaming to build a custom threat model for the agent.&lt;br&gt;
Investigate - targeted retesting of identified weaknesses, regressions, and emerging threat classes.&lt;br&gt;
Monitor - continuous drift detection and sentinel testing for behavioral regressions in production.&lt;br&gt;
These aren't sequential phases that run once. A decision engine evaluates multiple signals each cycle - critical findings, posture changes, coverage gaps, behavioral drift - and routes to whichever activity the agent's current state demands. A regression in a previously-secure area triggers investigation. A model update triggers reassessment. Stable posture stays in monitoring. The system self-prioritizes.&lt;/p&gt;

&lt;p&gt;The attack methodology is particularly important. Rather than relying on static test suites, the system uses adaptive strategies that learn from every engagement. Each conversation is scored in real time: strategies that make progress toward breaking the agent are refined and escalated, while approaches that hit hard refusals are deprioritized or pivoted mid-conversation. Successful attack patterns are extracted, generalized, and reinjected into future test cycles. Strategies that prove consistently ineffective are retired. The attack library grows with every test run - not through manual curation, but through a self-learning loop that captures what actually works against each specific agent.&lt;/p&gt;

&lt;p&gt;This is closer in spirit to coverage-guided fuzzing than to a traditional pentest checklist. The system prioritizes unexplored attack surfaces rather than repeating known patterns. But unlike static fuzzing, it adapts its approach based on the agent's live responses, building on what it learns within and across conversations.&lt;br&gt;
The result: the system discovers failure modes you wouldn't write test cases for, because the adaptive process explores the space more broadly than a human-authored test suite.&lt;br&gt;
The guardrails export step closes the loop. Findings from adversarial testing become firewall rules through Adaptive Context Defense (ACD). Testing directly trains the runtime defense layer. The more you test, the better your firewall gets. And when the firewall blocks something in production, that signal feeds back into the next testing cycle.&lt;br&gt;
Drift detection is what makes continuous assurance practical. Agents change constantly. Models get updated. System prompts get tweaked. Tool permissions shift. The agent you tested in January is not the agent running in March. Without drift detection, your testing results are point-in-time snapshots that decay in value. With it, behavioral regressions trigger re-assessment automatically.&lt;/p&gt;

&lt;p&gt;The 14.4% problem&lt;br&gt;
The data makes the case more clearly than any architectural argument.&lt;/p&gt;

&lt;p&gt;Gravitee's State of AI Agent Security report found that only 14.4% of AI agents go live with full security approval. The AIUC-1 Consortium, with input from CISOs at Confluent, Elastic, UiPath, and Deutsche Borse, documented that 80% of organizations report risky agent behaviors including unauthorized system access and improper data exposure. Only 21% of executives have visibility into agent permissions, tool usage, or data access patterns.&lt;/p&gt;

&lt;p&gt;The math tells the story: 85.6% of agents ship without full security approval. 80% of organizations already see risky behaviors.&lt;/p&gt;

&lt;p&gt;Enforcement architecture is meaningless for agents that were never tested before deployment. You can build the most sophisticated control plane in the world, but if the agent it governs was never validated against adversarial conditions, your enforcement policies are based on what you hope the agent does, not what you've proven it does.&lt;/p&gt;

&lt;p&gt;As David Campbell put it: "Testing for prompt injection doesn't automatically mean you're safe." That’s true. But not testing at all definitely means you're not.&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;What to do this week&lt;br&gt;
For practitioners, the actionable version is straightforward.&lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
Inventory your deployed agents. Most organizations have more than they think. The AIUC-1 data suggests an average of 1,200 unofficial AI applications per enterprise. You cannot test or govern what you haven't discovered.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Run adversarial tests before adding enforcement layers. If you haven't tested your agents with agentic multi-turn attack scenarios, start there. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Scope violations, tool abuse, and data exfiltration through conversation are the failure modes that infrastructure enforcement will not catch.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Map your findings to OWASP Agentic AI categories. NIST's AI Agent Standards Initiative just closed its RFI on agent security (March 9), and the identity/authorization concept paper is open for comment until April 2. What NIST publishes in 2026 will appear in compliance frameworks by 2027. Building your evidence base now, with posture scores and OWASP-mapped findings, positions you ahead of the compliance curve rather than scrambling to catch up.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Treat behavioral testing as a CI/CD gate, not an annual audit. Agents change weekly. Testing cadence should match deployment cadence. A gate that blocks insecure deployments is worth more than a quarterly report that documents them after the fact.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The enforcement conversation is important. Control planes, execution-layer security, agent identity chains. All of it matters. But enforcement for untested agents is enforcement in the dark.&lt;/p&gt;

&lt;p&gt;The sequence matters:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;- Test first.&lt;/li&gt;
&lt;li&gt;- Learn what breaks.&lt;/li&gt;
&lt;li&gt;- Enforce based on evidence.&lt;/li&gt;
&lt;li&gt;- Monitor for drift.&lt;/li&gt;
&lt;li&gt;- Retest.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; Download Humanbound's CLI and start your tests &lt;a href="https://docs.humanbound.ai/" rel="noopener noreferrer"&gt;https://docs.humanbound.ai/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>agents</category>
      <category>security</category>
      <category>ai</category>
      <category>agentskills</category>
    </item>
    <item>
      <title>The Enforcement illusion: Why AI Agent Security Starts with Testing, Not Walls</title>
      <dc:creator>Sofia Aliferi</dc:creator>
      <pubDate>Mon, 20 Jul 2026 10:46:44 +0000</pubDate>
      <link>https://dev.to/humanbound_ai/the-enforcement-illusion-why-ai-agent-security-starts-with-testing-not-walls-3a22</link>
      <guid>https://dev.to/humanbound_ai/the-enforcement-illusion-why-ai-agent-security-starts-with-testing-not-walls-3a22</guid>
      <description>&lt;p&gt;Three startups shipped the same message in the same week.&lt;/p&gt;

&lt;p&gt;Last week, three AI agent security companies all published content making the same argument: runtime enforcement is the answer. Aldo Pietropaolo wrote about Deterministic Control Planes. Eran Sandler's AgentSH argued for execution-layer security. Ian Livingstone's Keycard reframed the whole thing as an identity problem.&lt;/p&gt;

&lt;p&gt;All three are building real things. All three are solving real problems. And all three are skipping a step that the incident data makes impossible to ignore.&lt;/p&gt;

&lt;p&gt;The wall-building race&lt;br&gt;
The AI agent security market is fragmenting fast. In the past month alone, we've seen enforcement vendors, identity vendors, control plane vendors, and now two frontier labs entering the space. Anthropic shipped Claude Code Security. Two weeks later, OpenAI launched Codex Security. Knostic's Gadi Evron open-sourced their scanner and said it plainly: "it makes zero sense to compete with Anthropic and OpenAI."&lt;/p&gt;

&lt;p&gt;Everyone is building walls. Control planes that evaluate every action. Execution layers that gate on processes and network calls. Identity chains that track who sponsored each agent action. These are all architecturally sound ideas.&lt;/p&gt;

&lt;p&gt;But they all share an assumption: that you know what your agent does under pressure. That you've tested its behavior before wrapping it in enforcement. That you've mapped its failure modes before writing policies to prevent them.&lt;/p&gt;

&lt;p&gt;The incident data suggests that assumption is wrong for the vast majority of deployed agents.&lt;/p&gt;

&lt;p&gt;What the incidents actually tell us&lt;br&gt;
The most-engaged post in our Pulse data this month was Eduardo Ordax's coverage of OpenClaw deleting a Meta AI Safety lead's entire email inbox. Not a sophisticated attack. Not a zero-day exploit. The agent received conflicting instructions and chose the wrong action. It had been told not to touch anything until the user approved. It didn't listen.&lt;/p&gt;

&lt;p&gt;This is a scope violation under instruction conflict. It's one of the most basic failure modes in the OWASP Agentic AI taxonomy. A single adversarial test would have caught it.&lt;/p&gt;

&lt;p&gt;The pattern repeats across different systems. Tamir Ishay Sharbat at Peak Security disclosed PleaseFix, a new vulnerability class that hijacks agentic browsers through injected calendar invites. An autonomous bot documented by Ilya Kabanov got remote code execution in Microsoft, DataDog, and CNCF repos through legitimate GitHub Actions workflows. The 820+ malicious skills now found on OpenClaw's ClawHub marketplace are up from 324 just weeks ago.&lt;/p&gt;

&lt;p&gt;None of these were firewall failures. None were identity failures. They were behavioral failures: agents that were never tested for what happens when instructions conflict, when inputs are adversarial, or when tool access is abused through legitimate paths.&lt;/p&gt;

&lt;p&gt;And the scale of the problem is staggering. Gravitee's State of AI Agent Security report found that only 14.4% of AI agents go live with full security approval. That means 85.6% ship with no structured security validation at all.&lt;/p&gt;

&lt;p&gt;The market confusion: "AI that does security" vs "security for AI"&lt;br&gt;
The two frontier lab launches are adding a layer of confusion that I think is worth addressing directly.&lt;/p&gt;

&lt;p&gt;Anthropic's Claude Code Security and OpenAI's Codex Security are code vulnerability scanners. They analyze repositories, find CVEs, and suggest patches. Codex Security scanned 1.2 million commits in its first 30 days and found 14 CVEs in projects like OpenSSH, GnuTLS, and Chromium. Impressive work.&lt;/p&gt;

&lt;p&gt;But scanning code for bugs is not the same as testing whether your AI agent behaves correctly in production. Code scanning finds vulnerabilities in your repository. Agent testing finds what happens when someone socially engineers your bot into leaking its system prompt, or tricks it into misusing its tool access, or pushes it past its intended scope through a multi-turn conversation.&lt;/p&gt;

&lt;p&gt;Different layer. Different problem. Different solution.&lt;/p&gt;

&lt;p&gt;The AIUC-1 Consortium just reported that 80% of organizations see risky agent behaviors: unauthorized access, improper data exposure. Only 21% have visibility into what their agents can actually do. These aren't code bugs. These are behavioral failures that no code scanner will catch.&lt;/p&gt;

&lt;p&gt;The market is conflating "AI that does security" with "security for AI." The distinction matters, because the incidents keep piling up on the agent behavior side, not the code side.&lt;/p&gt;

&lt;p&gt;What NIST is about to ask for&lt;br&gt;
Here's where timing becomes important.&lt;/p&gt;

&lt;p&gt;NIST's AI Agent Standards Initiative just closed its RFI on AI Agent Security (March 9). The NCCoE concept paper on agent identity and authorization is open for comment until April 2. Listening sessions with healthcare, finance, and education sectors begin in April.&lt;/p&gt;

&lt;p&gt;Jones Walker's legal analysis of the initiative puts it bluntly: what NIST publishes in 2026 will appear in compliance frameworks by 2027. This isn't speculation. The AI Risk Management Framework followed the same path: voluntary guidance in 2023, appearing in executive orders, state laws, and federal procurement requirements within 18 months. The Colorado AI Act references the AI RMF. The EU AI Act's implementing guidance cites it. Federal contractors are asked to demonstrate alignment in proposals.&lt;/p&gt;

&lt;p&gt;The AI Agent Standards Initiative will likely follow the same trajectory. Voluntary guidelines become industry standards. Industry standards inform regulatory expectations. Regulatory expectations shape liability exposure.&lt;/p&gt;

&lt;p&gt;The compliance question that's coming isn't "do you have a firewall?" It's "can you produce evidence that your agents were tested?" Posture scores with clear grading (A through F). Findings with a lifecycle (open, stale, fixed, regressed). Results mapped to OWASP Agentic AI categories. Audit trails that feed into your SIEM. This is what evidence looks like, and it requires structured testing to produce.&lt;/p&gt;

&lt;p&gt;You can't generate compliance evidence from enforcement alone. Enforcement logs show what was blocked. Testing evidence shows what was found, how severe it was, whether it was fixed, and whether it regressed. That's what auditors will ask for.&lt;/p&gt;

&lt;p&gt;The sequence the market is skipping&lt;br&gt;
The AIUC-1 data suggests the average enterprise has 1,200 unofficial AI applications running. 80% report risky behaviors. Only 21% have visibility into permissions. Cisco's State of AI Security 2026 found that 83% of organizations plan to deploy agentic AI, while only 29% report being ready to operate those systems securely.&lt;/p&gt;

&lt;p&gt;These numbers point to a sequence problem, not a technology problem.&lt;/p&gt;

&lt;p&gt;Before enforcement, you need testing: have you validated your agents against adversarial conditions? Before testing, you need discovery: do you even know what agents are running in your organization? And underlying all of it, you need evidence production: can you prove what you've done to your board and your auditor?&lt;/p&gt;

&lt;p&gt;The competitor discourse is debating control planes vs execution-layer security vs agent identity. All important conversations. But for most enterprises, those are phase 3 discussions. They haven't finished phase 1.&lt;/p&gt;

&lt;p&gt;Who's positioned for what&lt;br&gt;
I want to be honest about how the market maps right now, because I think practitioners deserve a clear picture rather than vendor positioning.&lt;/p&gt;

&lt;p&gt;Keycard is working on agent identity and accountability. Their question, "who sponsored this action, under what authority, and toward what end?" is a genuine gap that traditional IAM doesn't answer for autonomous agents. AgentSH and Aldo Pietropaolo are building runtime enforcement at the execution layer: processes, files, network. The frontier labs now own code vulnerability scanning. Snyk is tackling agent supply chain security with their mcp-scan tool. Adversa AI built SecureClaw for OpenClaw hardening.&lt;/p&gt;

&lt;p&gt;Nobody covers the full lifecycle: discovery, testing, enforcement, monitoring, and compliance evidence, all connected. Each vendor is selling one slice. That's not a criticism. The problem is genuinely hard, and enterprises will likely need multiple vendors working together.&lt;/p&gt;

&lt;p&gt;But the question for buyers is which layers are foundational and which are optional. Testing and evidence production are foundational. Everything else builds on them. Here's why: you can add enforcement to a tested system and know your policies are grounded in evidence. You can't meaningfully enforce an untested one, because your policies are based on assumptions about behavior you've never validated. Identity is essential for accountability, but identity without behavioral testing is an authentication stamp on an untested system. Supply chain scanning catches malicious plugins, but it doesn't tell you whether the agent itself respects its boundaries when an adversary pushes it through conversation.&lt;/p&gt;

&lt;p&gt;At Humanbound, that's the sequence we built around. Discover your AI estate. Test each agent adversarially. Produce the evidence. Then enforce and monitor continuously. The ASCAM engine connects these phases into a feedback loop where testing trains defense, and defense informs the next round of testing.&lt;/p&gt;

&lt;p&gt;I'll be direct about what we don't cover: we don't enforce at the infrastructure execution layer (that's where AgentSH and Pietropaolo play), and we don't solve agent identity (that's Keycard's territory). What we do is make sure that whatever enforcement and identity layers you add, they're built on a foundation of tested, validated, evidence-backed agent behavior. Not assumptions.&lt;/p&gt;

&lt;p&gt;The enforcement conversation matters. But enforcement for untested agents is enforcement in the dark.&lt;/p&gt;

&lt;p&gt;Humanbound is open source - be part of what we are building &lt;a href="https://github.com/humanbound/humanbound" rel="noopener noreferrer"&gt;https://github.com/humanbound/humanbound&lt;/a&gt; &lt;/p&gt;

</description>
      <category>ai</category>
      <category>agents</category>
    </item>
    <item>
      <title>AI agent evaluation is evolving. Here's what we're building.</title>
      <dc:creator>Sofia Aliferi</dc:creator>
      <pubDate>Wed, 15 Jul 2026 06:05:05 +0000</pubDate>
      <link>https://dev.to/humanbound_ai/ai-agent-evaluation-is-evolving-heres-what-were-building-59oc</link>
      <guid>https://dev.to/humanbound_ai/ai-agent-evaluation-is-evolving-heres-what-were-building-59oc</guid>
      <description>&lt;p&gt;The past year has given us an explosion of frameworks for building AI agents. Evaluating them, however, still often comes down to running isolated prompts and comparing outputs.&lt;br&gt;
That isn't how agents behave in production.&lt;/p&gt;

&lt;p&gt;They call tools. They interact with APIs. They maintain context across multiple turns. They make decisions that depend on previous actions. And they're expected to follow organizational policies while doing all of that.&lt;/p&gt;

&lt;p&gt;That's the problem we're working on at Humanbound.&lt;/p&gt;

&lt;p&gt;Humanbound is an open source testing engine for AI agents that evaluates real behavior instead of isolated prompts. You can test live endpoints, simulate multi-turn conversations, exercise tool use, and score results against your own policies.&lt;/p&gt;

&lt;p&gt;One idea I particularly like is closing the loop between evaluation and enforcement. When a test exposes an undesirable behavior, that failing test can become a deployable guardrail rule instead of remaining just another item in a report.&lt;/p&gt;

&lt;p&gt;We're still early, which means community feedback matters far more than polished demos.&lt;/p&gt;

&lt;p&gt;If you're building an AI agent, I'd love for you to point Humanbound at it.&lt;/p&gt;

&lt;p&gt;Run the quickstart. Try your own scenarios. Break things. Tell us what doesn't work. The edge cases are where evaluation frameworks get interesting.&lt;/p&gt;

&lt;p&gt;If local deployment matters to you, Humanbound also supports fully local, air-gapped execution with Ollama.&lt;/p&gt;

&lt;p&gt;Documentation: &lt;a href="https://docs.humanbound.ai" rel="noopener noreferrer"&gt;https://docs.humanbound.ai&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/humanbound/humanbound" rel="noopener noreferrer"&gt;https://github.com/humanbound/humanbound&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'm looking forward to hearing what works, what doesn't, and what you'd like to see next.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>security</category>
      <category>opensource</category>
      <category>agents</category>
    </item>
  </channel>
</rss>
