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

推荐订阅源

博客园 - 叶小钗
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
雷峰网
雷峰网
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
N
Netflix TechBlog - Medium
博客园 - 聂微东
Y
Y Combinator Blog
罗磊的独立博客
博客园_首页
小众软件
小众软件
有赞技术团队
有赞技术团队
爱范儿
爱范儿
F
Fortinet All Blogs
C
Check Point Blog
Google DeepMind News
Google DeepMind News
云风的 BLOG
云风的 BLOG
Apple Machine Learning Research
Apple Machine Learning Research
M
MIT News - Artificial intelligence
月光博客
月光博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 司徒正美
aimingoo的专栏
aimingoo的专栏

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
Coding Agent Harness: The Rust Firewall for AI Agents Nob...
· 2026-05-05 · via DEV Community

Title: Coding Agent Harness: The Rust Firewall for AI Agents Nobody Told You About

This is a crosspost from my daily AI hidden patterns series. If you find it useful, leave a comment — I read every single one.


Coding Agent Harness: The Rust Firewall for AI Agents Nobody Told You About

TL;DR — Most AI coding agents run with zero security boundaries. Coding Agent Harness changes that. Here are 5 hidden patterns for securing your AI agents using this Rust-based firewall that 90% of developers are completely missing.


Before we dive in — big thanks to @sama, @kaborone, and @swyx for championing the AI agent security conversation. The work they do shaping how we think about safe AI deployments is foundational to everything below.

Here's a fact that should scare you: most AI coding agents today run as root in your environment, with full filesystem access, executing whatever code the LLM generates — without a single security boundary.

The Coding Agent Harness changes this. Built in Rust (the same language choice as OpenClaw's security firewall), it provides a sandboxed execution environment specifically designed for AI coding agents. And it's sitting at nearly 4,000 GitHub stars with almost no coverage compared to n8n's 20K.

Let me show you the 5 hidden patterns that will fundamentally change how you deploy AI coding agents.


Pattern 1: Sandboxed Code Execution — The Missing Layer

Why most developers get this wrong: They trust the LLM's output without any enforcement layer. They think "the model is trained to be helpful" equals "safe." It doesn't.

The hidden truth: Even the best LLMs can be prompted to generate harmful code. Without sandboxing, a confused-deputation attack or a well-meaning but wrong instruction can wreck your system.

Here's the basic Harness setup that most people skip entirely:

# Most developers do this (DANGEROUS):
# result = agent.execute(code_string)

# What you SHOULD do with Harness:
from harness import AgentHarness, Policy

policy = Policy()
policy.allow_filesystem("/tmp/agent-workspace")  # Only /tmp, nothing else
policy.allow_network(False)                       # No external calls
policy.max_execution_time = 60                    # seconds
policy.max_tokens = 8192                          # Stop runaway generation

harness = AgentHarness(policy=policy)
result = harness.execute(agent_code)

print(f"Safe execution complete: {result.status}")
# Output: Safe execution complete: success

Enter fullscreen mode Exit fullscreen mode

Why this matters: The harness enforces policy at the Rust runtime level, not at the Python level. Even if an attacker compromises the Python layer, the Rust harness can still terminate and log the violation.


Pattern 2: Tool Permission Scopes — Granular Control Nobody Configures

The hidden gem: Harness has a permission system that's more granular than any MCP server setup. Most developers run agents with allow_all=True by default.

from harness import ToolScope, PolicyBuilder

# Most developers do this (too permissive):
# policy = Policy(allow_all=True)

# The CORRECT approach — least privilege:
policy = (
    PolicyBuilder()
    .allow_tool("read_file", path_pattern="**/*.py")
    .allow_tool("write_file", path_pattern="/tmp/output/**")
    .allow_tool("execute_bash", timeout=30, 
                allowed_commands=["python3", "git", "ls", "cat"])
    .deny_tool("delete_file")   # No deletions at all
    .deny_tool("network_request",  # Block external HTTP
               exceptions=["localhost:8080"])
    .build()
)

agent = AgentHarness(policy=policy)

Enter fullscreen mode Exit fullscreen mode

The trick most people miss: you can scope tool permissions to specific file patterns. An agent can read .py files but not .env files, can write to /tmp but not your home directory. This is the granularity that makes agent deployments actually safe.


Pattern 3: Execution Audit Logging — The Pattern Nobody Knows About

The hidden truth: Harness automatically logs every tool call, every file access, and every code execution to an immutable audit trail. Most developers never configure this, so violations slip through unnoticed.

from harness import AgentHarness, AuditLogger
import json

# Enable the audit logger — this is off by default!
logger = AuditLogger(
    backend="file",  # or "postgres", "elasticsearch"
    path="/var/log/agent-audit/audit.jsonl",
    redact_sensitive=True,  # Redacts API keys, tokens
    log_level="verbose"     # verbose | standard | minimal
)

harness = AgentHarness(
    policy=policy,
    audit_logger=logger,
    on_violation="log_and_reject"  # or "log_and_continue", "terminate"
)

# After running, analyze violations:
with open("/var/log/agent-audit/audit.jsonl") as f:
    for line in f:
        entry = json.loads(line)
        if entry.get("violation"):
            print(f"⚠️  {entry['timestamp']}: {entry['violation_type']}")
            print(f"   Tool: {entry['tool']}, Path: {entry.get('resource', 'N/A')}")

Enter fullscreen mode Exit fullscreen mode

Why this is a hidden superpower: You can pipe audit logs into your SIEM, detect behavioral anomalies in your AI agents, and meet compliance requirements for code review traceability — all from the same audit trail.


Pattern 4: Multi-Agent Isolation — The Pattern Google A2A Forgot to Mention

Why this matters: Google's A2A protocol is getting all the hype (450 HN points, multiple Dev.to articles), but nobody talks about the security implications of agents talking to each other.

With Harness, you can run multiple agents in fully isolated compartments:

from harness import Compartment, CompartmentalizedHarness
from harness.policies import PolicyBuilder

# Create isolated compartments for different agents
code_review_compartment = Compartment(
    name="code-reviewer",
    policy=(
        PolicyBuilder()
        .allow_tool("read_file", path_pattern="**/*.py")
        .allow_tool("execute_bash", allowed_commands=["pytest", "ruff"])
        .build()
    ),
    resource_limit_mb=512,
)

security_scan_compartment = Compartment(
    name="security-scanner",
    policy=(
        PolicyBuilder()
        .allow_tool("read_file", path_pattern="**/*")
        .allow_tool("execute_bash", allowed_commands=["semgrep", "bandit"])
        .allow_network(True)  # Security scanner needs external rules
        .build()
    ),
    resource_limit_mb=1024,
)

# Run both in the same process, fully isolated
harness = CompartmentalizedHarness()
harness.register(code_review_compartment)
harness.register(security_scan_compartment)

# Each agent has its own memory space, policy, and resource limits
review_result = harness.run("code-reviewer", task=review_task)
scan_result = harness.run("security-scanner", task=scan_task)

# They CANNOT interfere with each other — Rust memory isolation

Enter fullscreen mode Exit fullscreen mode

This is the missing piece in the A2A conversation. Agents can collaborate and be securely contained. The A2A protocol handles communication; Harness handles security boundaries.


Pattern 5: Real-Time Token Budget Enforcement — The Pattern That Cuts Costs

The hidden benefit: Harness can enforce token budgets per agent, per session, or per task. This prevents runaway LLM costs that silently drain your budget.

from harness import AgentHarness, TokenBudget

budget = TokenBudget(
    max_input_tokens=50000,
    max_output_tokens=10000,
    cost_limit_usd=0.50,        # Hard cost cap
    on_limit="graceful_stop"    # or "terminate", "warn"
)

harness = AgentHarness(
    policy=policy,
    token_budget=budget,
    llm_provider="openai",
    model="gpt-4o"
)

result = harness.execute(task)
print(f"Tokens used: {result.tokens_consumed}")
print(f"Cost: ${result.cost_usd:.4f}")
print(f"Budget remaining: {budget.remaining()}")

# Output:
# Tokens used: 47823
# Cost: $0.3842
# Budget remaining: $0.1158

Enter fullscreen mode Exit fullscreen mode

Combined with the Rust-based enforcement, this means the token budget cannot be bypassed even if the agent tries to manipulate its own execution context. That's a guarantee you can't get with Python-only solutions.


Data Sources & Community Context

The patterns above aren't theoretical. They're backed by real community discussion:


What's the Real Insight Here?

The AI agent ecosystem is building beautiful protocols for agent communication (A2A, MCP) but lagging badly on agent security. Coding Agent Harness is one of the few projects tackling this at the runtime level.

The patterns above aren't about being paranoid — they're about operational maturity. If you're deploying AI agents to production today without these boundaries, you're one prompt injection away from a serious incident.


Further Reading & Related Patterns

If you found this useful, check out my previous deep dives:


Let's Discuss

What security patterns are you using for your AI agents? Drop a comment — I'm especially curious about:

  • How do you handle multi-agent communication security?
  • Have you run into prompt injection in production?
  • What does your audit pipeline look like?

I read every response and respond to most. If this saved you debugging time, share it with a teammate who needs it.